home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsweb.h < prev    next >
C/C++ Source or Header  |  2005-02-05  |  4KB  |  109 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: webhttrack.c routines                                  */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. #ifndef WEBHTTRACK_WBC
  38. #define WEBHTTRACK_WBC
  39.  
  40. #include "htsglobal.h"
  41. #include "htscore.h"
  42.  
  43. #define NStatsBuffer     14
  44. #define MAX_LEN_INPROGRESS 40
  45.  
  46. typedef struct t_StatsBuffer {
  47.   char name[1024];
  48.   char file[1024];
  49.   char state[256];
  50.   char url_sav[HTS_URLMAXSIZE*2];    // pour cancel
  51.   char url_adr[HTS_URLMAXSIZE*2];
  52.   char url_fil[HTS_URLMAXSIZE*2];
  53.   LLint size;
  54.   LLint sizetot;
  55.   int offset;
  56.   //
  57.   int back;
  58.   //
  59.   int actived;    // pour disabled
  60. } t_StatsBuffer;
  61.  
  62. typedef struct t_InpInfo {
  63.   int ask_refresh;
  64.   int refresh;
  65.   LLint stat_bytes;
  66.   int stat_time;
  67.   int lien_n;
  68.   int lien_tot;
  69.   int stat_nsocket;
  70.   int rate;
  71.   int irate;
  72.   int ft;
  73.   LLint stat_written;
  74.   int stat_updated;
  75.   int stat_errors;
  76.   int stat_warnings;
  77.   int stat_infos;
  78.   TStamp stat_timestart;
  79.   int stat_back;
  80. } t_InpInfo;
  81.  
  82. // wrappers
  83. void  __cdecl htsshow_init(void);
  84. void  __cdecl htsshow_uninit(void);
  85. int   __cdecl htsshow_start(httrackp* opt);
  86. int   __cdecl htsshow_chopt(httrackp* opt);
  87. int   __cdecl htsshow_end(void);
  88. int   __cdecl htsshow_preprocesshtml(char** html,int* len,char* url_adresse,char* url_fichier);
  89. int   __cdecl htsshow_checkhtml(char* html,int len,char* url_adresse,char* url_fichier);
  90. int   __cdecl htsshow_loop(lien_back* back,int back_max,int back_index,int lien_n,int lien_tot,int stat_time,hts_stat_struct* stats);
  91. char* __cdecl htsshow_query(char* question);
  92. char* __cdecl htsshow_query2(char* question);
  93. char* __cdecl htsshow_query3(char* question);
  94. int   __cdecl htsshow_check(char* adr,char* fil,int status);
  95. void  __cdecl htsshow_pause(char* lockfile);
  96. void  __cdecl htsshow_filesave(char* file);
  97. int   __cdecl htsshow_linkdetected(char* link);
  98. int   __cdecl htsshow_linkdetected2(char* link, char* start_tag);
  99. int   __cdecl htsshow_xfrstatus(lien_back* back);
  100. int   __cdecl htsshow_savename(char* adr_complete,char* fil_complete,char* referer_adr,char* referer_fil,char* save);
  101. int   __cdecl htsshow_sendheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* outgoing);
  102. int   __cdecl htsshow_receiveheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* incoming);
  103.   
  104. int main(int argc, char **argv);
  105. void webhttrack_main(char* cmd);
  106. void webhttrack_lock(int lock);
  107.  
  108. #endif
  109.